home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / bus.sql < prev    next >
Text File  |  2000-05-12  |  783b  |  21 lines

  1. /* RCSVER $Id: bus.sql,v 1.5 1999-04-07 18:05:33-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        bus.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the bus table. This table defines all the buses
  9. *        of a transit property.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE bus
  13. (
  14.     glid        NUMBER(38),    /* Internal sw ID of bus */
  15.     bus_id        NUMBER(38),    /* User-defined ID of bus */
  16.     garageid    NUMBER(38),    /* Internal sw ID of primary garage */
  17.     descr    VARCHAR2(40),        /* Description of bus */
  18.     CONSTRAINT unq_bus UNIQUE (bus_id),
  19.     CONSTRAINT pk_bus PRIMARY KEY (glid)
  20. );
  21.